bitkeeper revision 1.1159.17.8 (4119ca9d45NUd2jZUoii5FZ0sUjBKg)
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>
Wed, 11 Aug 2004 07:28:29 +0000 (07:28 +0000)
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>
Wed, 11 Aug 2004 07:28:29 +0000 (07:28 +0000)
Missing EXPORT_SYMBOL.

linux-2.4.26-xen-sparse/arch/xen/kernel/i386_ksyms.c
linux-2.6.7-xen-sparse/arch/xen/kernel/evtchn.c

index 8b72e44f12d6350654e80f9009377e3d68fe4e72..0938a64f654753185e8d442ccf8ae878275ede30 100644 (file)
@@ -176,4 +176,5 @@ EXPORT_SYMBOL(create_xen_proc_entry);
 EXPORT_SYMBOL(remove_xen_proc_entry);
 
 EXPORT_SYMBOL(evtchn_do_upcall);
+EXPORT_SYMBOL(force_evtchn_callback);
 EXPORT_SYMBOL(HYPERVISOR_shared_info);
index 06d6ae948e38432cb7e50bafbe69fd953959473b..87eda487259880e0f73493878adf186c131d0999 100644 (file)
 #include <asm-xen/ctrl_if.h>
 #include <asm-xen/hypervisor.h>
 
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
+EXPORT_SYMBOL(force_evtchn_callback);
+EXPORT_SYMBOL(evtchn_do_upcall);
+#endif
+
 /*
  * This lock protects updates to the following mapping and reference-count
  * arrays. The lock does not need to be acquired to read the mapping tables.
@@ -93,9 +98,6 @@ void evtchn_do_upcall(struct pt_regs *regs)
 
     local_irq_restore(flags);
 }
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
-EXPORT_SYMBOL(evtchn_do_upcall);
-#endif
 
 static int find_unbound_irq(void)
 {